Skip to content

Instantly share code, notes, and snippets.

@bmsimons
bmsimons / ALLWINDOWSONTECHBENCH.md
Last active September 3, 2026 04:24
Download all Windows ISOs directly from Microsoft with a trick

Just run the following JavaScript bookmarklet on https://www.microsoft.com/en-us/software-download/windows10 to reveal all Windows versions.

$("select#product-edition").html("<option value selected value='selected'>Select edition</option><option value='2'>Windows 7 Home Basic SP1 </option><option value='4'>Windows 7 Professional SP1 </option><option value='6'>Windows 7 Home Premium SP1 </option><option value='8'>Windows 7 Ultimate SP1 </option><option value='10'>Windows 7 Home Premium N SP1 </option><option value='12'>Windows 7 Professional N SP1 </option><option value='14'>Windows 7 Ultimate N SP1 </option><option value='16'>Windows 7 Professional K SP1 </option><option value='18'>Windows 7 Professional KN SP1 </option><option value='20'>Windows 7 Home Premium K SP1 </option><option value='22'>Windows 7 Home Premium KN SP1 </option><option value='24'>Windows 7 Ultimate KN SP1 </option><option value='26'>Windows 7 Ultimate K SP1 </option><option value='28'>Windows 7 Starter SP1 </option><option value
@jctosta
jctosta / screen_cheatsheet.markdown
Last active September 3, 2026 04:16
Screen Cheatsheet

Screen Quick Reference

Basic

Description Command
Start a new session with session name screen -S <session_name>
List running sessions / screens screen -ls
Attach to a running session screen -x
Attach to a running session with name screen -r

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@madhurimarawat
madhurimarawat / GATE-CSE-DS-Resources.md
Last active September 3, 2026 04:13
A collection of the best free GATE preparation resources for CSE & Data Science. Contributions are welcome!

📌 GATE Resources - CSE & Data Science

I have compiled all the resources that helped me in my GATE preparation, and I hope they help you too! 🚀

@acmerfight
acmerfight / karpathy-llm-wiki-explained.md
Last active September 3, 2026 04:11
Karpathy LLM Wiki 方法论深度解读 — 基于原文的完整讲解与事实核查

🧠 Karpathy "LLM Wiki" 方法论深度解读

Andrej Karpathy — OpenAI 联合创始人、前 Tesla AI 负责人、"Vibe Coding" 提出者
原始推文:2026 年 4 月 2-3 日(因时区差异,不同来源记录为 2 日或 3 日) · GitHub Gist(5000+ ⭐)
本文基于原始推文与 Gist 原文,经多源交叉验证


〇、一句话概括

@flashblaze
flashblaze / agy-web-search.ts
Created August 2, 2026 13:46
omp web search extension using agy cli
import type { CustomToolFactory } from '@oh-my-pi/pi-coding-agent';
const factory: CustomToolFactory = (pi) => {
const z = pi.zod;
return {
name: 'agy_web_search',
label: 'AGY Web Search',
description:
'Search and retrieve public web evidence through Antigravity CLI. MUST be used for unknown-URL web research instead of native OMP web search providers. Returns source URLs and page excerpts for the calling model to synthesize; use read for known URLs and browser for interactive pages.',
@fredjoseph
fredjoseph / Zsh.md
Last active September 3, 2026 04:04
Zsh

Config files

To configure Zsh for your user’s session, you can use the following files:

  • $ZDOTDIR/.zshenv
  • $ZDOTDIR/.zprofile
  • $ZDOTDIR/.zshrc
  • $ZDOTDIR/.zlogin
  • $ZDOTDIR/.zlogout

By default, Zsh will try to find the user’s configuration files in the $HOME directory. You can change it by setting the environment variable $ZDOTDIR.

@yowmamasita
yowmamasita / stremio-offline-project-brief.md
Last active September 3, 2026 03:57
Stremio Offline Downloads — Expo Android App — Project Brief & Technical Reference

Stremio Offline Downloads — Expo Android App

Project Brief

Build an Expo (React Native) Android app that runs a local Stremio addon server on the device, aggregating streams from 75+ Stremio addons (based on AIOStreams core logic), with an added offline download manager for saving content to local storage.

Stremio connects to http://127.0.0.1:3000/manifest.json — the addon runs entirely on-device, no external server needed.


@HaleTom
HaleTom / aria2-trackers-update
Last active September 3, 2026 03:56
Update aria2.conf with 20 "best" BitTorrent trackers
#!/bin/bash
# Update the bt-tracker= line in aria2.conf
# Any bt-tracker= lines are removed and and a new one added at the bottom of the file
# Updates at: https://gist.github.com/HaleTom/fe873dc2f3c5bd14f7418efefc2b91a8
# Inspiration: https://github.com/wuyuansushen/aria2c_TrackersList
set -euo pipefail
shopt -s failglob